home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_12_11 / pjp / flush.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-02  |  202 b   |  12 lines

  1. ----------------- Listing 13: The file flush.c ----------------
  2.  
  3. // flush -- flush(ostream&)
  4. #include <ostream>
  5.  
  6. ostream& flush(ostream& os)
  7.     {    // flush output
  8.     os.flush();
  9.     return (os);
  10.     }
  11.  
  12.